home *** CD-ROM | disk | FTP | other *** search
- // window resize - runs automatically when including page is loaded
-
- top.window.moveTo(0,0);
-
- if (document.all) {
- top.window.resizeTo(810,742);
- } //if
- else if (document.layers||document.getElementById) {
- if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth) {
- top.window.outerHeight = 742;
- top.window.outerWidth = 810;
- } //if
- } //else if
-
- // end window resize
-
-